8073fc2d58c87310dd345e2409065063d74a5dc1,source/com/intellij/psi/formatter/newXmlFormatter/java/AbstractJavaBlock.java,AbstractJavaBlock,processChild,#ArrayList#ASTNode#Alignment#Wrap#,196

Before Change


                                  Formatter.getInstance().getNoneIndent(),
                                  Formatter.getInstance().createContinuationIndent(),
                                  WrappingStrategy.createDoNotWrapCommaStrategy(wrap),
                                  createAlignment(mySettings.ALIGN_MULTILINE_PARAMETERS, null));
    }
    else if (child.getElementType() == ElementType.LPARENTH && myNode.getElementType() == ElementType.PARENTH_EXPRESSION){
      child = createSynteticBlock(result, child, ElementType.LPARENTH, ElementType.RPARENTH,

After Change


                                  Formatter.getInstance().getNoneIndent(),
                                  Formatter.getInstance().createContinuationIndent(),
                                  WrappingStrategy.createDoNotWrapCommaStrategy(wrap),
                                  AlignmentStrategy.createDoNotAlingCommaStrategy(createAlignment(mySettings.ALIGN_MULTILINE_PARAMETERS, null)));
    }
    else if (child.getElementType() == ElementType.LPARENTH && myNode.getElementType() == ElementType.PARENTH_EXPRESSION){
      child = createSynteticBlock(result, child, ElementType.LPARENTH, ElementType.RPARENTH,